home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue39 / construc / SPLASH.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-10-06  |  270 b   |  19 lines

  1. unit Splash;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   StdCtrls;
  6.  
  7. type
  8.   TSplashForm = class(TForm)
  9.     VisitorTracking: TLabel;
  10.   end;
  11.  
  12. var
  13.   SplashForm: TSplashForm;
  14.  
  15. implementation
  16. {$R *.DFM}
  17.  
  18. end.
  19.